home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / QUEEN.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-11  |  171 b   |  12 lines

  1. #include <stdio.h>
  2. proto();
  3. void main(void)
  4. {
  5. printf("The prototype follows\n");
  6. proto();
  7. }
  8. proto()
  9. {
  10. printf("This is the prototype function.  No return.");
  11. }
  12.